home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.20010306-20010921 / 000266_fdc@watsun.cc.columbia.edu_Fri Jul 13 09:47:46 EDT 2001.msg < prev    next >
Text File  |  2001-09-20  |  3KB  |  74 lines

  1. Article: 12597 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!watsun.cc.columbia.edu!fdc
  3. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: multi connection
  6. Date: 13 Jul 2001 13:48:04 GMT
  7. Organization: Columbia University
  8. Lines: 57
  9. Message-ID: <9imu6k$468$1@newsmaster.cc.columbia.edu>
  10. References: <3b4ea837$0$25480$ba620e4c@news.skynet.be>
  11. NNTP-Posting-Host: watsun.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 995032084 4296 128.59.39.2 (13 Jul 2001 13:48:04 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 13 Jul 2001 13:48:04 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12597
  16.  
  17. In article <3b4ea837$0$25480$ba620e4c@news.skynet.be>,
  18. Nathan Rousseau <nathan.rousseau@planetmedica.com> wrote:
  19. : I have a modem card with four modem on it...
  20. : A first person from outside connect to a first session o kermit.....
  21. : A second person from outside connect to a second session o kermit.....
  22. : The first person stop its connection....
  23. : A third person from outside connect to the first session o kermit.....
  24. : It's exactly what i want....
  25. : BUT
  26. : if a third person try to connect when the two first line are busy, the third
  27. : person can't never connect... Always the same message: NO CARRIER ( no
  28. : answer, the phone just bell )
  29. : I use Win2000, i have 2 COM port configured in windows, ( com1 and com2 ) 4
  30. : port are used for modem (com3->com6) all seems right
  31. Which Kermit program do you have?
  32.  
  33. : Of course there is enough kermit session for four phone call....
  34. : -> Is there any limit parameter to kermit answering session? ( After 2
  35. : session, no more answer )?
  36. What commands did you give to the Kermit program to instruct it to answer
  37. the phone?
  38.  
  39. Assuming you have Kermit 95, the answer is: of course you can do what you
  40. want.  You can use Host Mode, which is designed for taking incoming calls:
  41.  
  42.   http://www.columbia.edu/kermit/k95host.html
  43.  
  44. Or you can write your own script.  For example, if you want K95 to repeatedly
  45. answer incoming calls on COM2, and go into server mode for each call:
  46.  
  47.   cd c:/some/directory
  48.   set carrier-watch auto
  49.   set modem type usrobotics  ; or whatever
  50.   set port com2
  51.   set speed 115200
  52.   set flow rts/cts
  53.   while true {
  54.       answer
  55.       if success {
  56.           lineout KERMIT 95 SERVER...
  57.           server
  58.       }
  59.       hangup
  60.   }
  61.  
  62. You can elaborate as much as you want.  If you want four simultaneous
  63. sessions, run four copies of the script, one for each COM ort.
  64.  
  65. - Frank
  66.